/* Větší mezera mezi carousel a konkurenčními výhodami */
.benefitBanner {
    margin-top: 60px !important;
}

/* Dekorativní linka pod konkurenčními výhodami */
.benefitBanner {
    position: relative;
    padding-bottom: 40px !important;
}

.benefitBanner::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 2px;
    background: linear-gradient(to right, transparent, #23395B 20%, #23395B 80%, transparent);
}

/* Responzivní úpravy */
@media (max-width: 768px) {
    .benefitBanner {
        margin-top: 40px !important;
        padding-bottom: 70px !important;
    }

    .benefitBanner::after {
        bottom: 45px;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .benefitBanner {
        margin-top: 30px !important;
        padding-bottom: 60px !important;
    }

    .benefitBanner::after {
        bottom: 40px;
        width: 95%;
    }
}